home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / c-lang / phnlgdvk.lha / PhoneLog / src / ratc.h < prev    next >
C/C++ Source or Header  |  1996-03-07  |  805b  |  43 lines

  1. #ifndef yyratc
  2. #define yyratc
  3.  
  4. /* $Id: ratc.h,v 1.4 1992/08/07 14:35:05 grosch rel $ */
  5.  
  6. /* $Log: ratc.h,v $
  7.  * Revision 1.4  1992/08/07  14:35:05  grosch
  8.  * changed tString from # define to typedef
  9.  *
  10.  * Revision 1.3  1992/02/18  12:52:30  grosch
  11.  * changed tString from unsigned char * to char *
  12.  *
  13.  * Revision 1.2  1991/11/21  14:28:16  grosch
  14.  * new version of RCS on SPARC
  15.  *
  16.  * Revision 1.1  90/07/04  14:34:13  grosch
  17.  * introduced conditional include
  18.  *
  19.  * Revision 1.0  88/10/04  11:44:54  grosch
  20.  * Initial revision
  21.  *
  22.  */
  23.  
  24. /* Ich, Doktor Josef Grosch, Informatiker, Sept. 1987 */
  25.  
  26. #ifndef bool
  27.   #define bool char
  28. #endif
  29. #ifndef true
  30.   #define true 1
  31. #endif
  32. #ifndef false
  33.   #define false 0
  34. #endif
  35. #ifndef cardinal
  36.   #define cardinal /* unsigned */ short
  37. #endif
  38.  
  39.  
  40. typedef char *tString;
  41.  
  42. #endif
  43.